home *** CD-ROM | disk | FTP | other *** search
- /*
- * File: About.c
- * Author: Mark H. Linton
- * Creation Date: 2/4/95
- * Modification Date:
- * Description: A routine which may be used to handle the
- * "About <application name>" item in the apple
- * menu.
- */
- #ifndef __ABOUT__
- #define __ABOUT__
-
- /*
- * Routine: DoAbout
- * Parameters: anIdentifier - the ID of a DLOG/DITL pair which
- * describe the application about box.
- * Returns: None
- * Description: This routine accepts the ID of a DLOG/DITL pair
- * and displays the dialog as desribed in the
- * associated resources in the application resource
- * fork. Update events are processed until a mouse
- * down or a key down event occurs at which point
- * the dialog is hidden. Before disposing of the
- * dialog the routine checks to see if the dialog
- * contains any picture items. If it does, these
- * resources are specifically released (since
- * DisposeDialog does not do this, leaving the
- * associated resources in memory).
- */
- void DoAbout(short anIdentifier);
-
- #endif